home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / PowerPC / vbcc / machines / amigawos / libsrc / stdio / setbuf.c < prev    next >
C/C++ Source or Header  |  1998-08-02  |  111b  |  8 lines

  1. #include <stdio.h>
  2.  
  3. void setbuf(FILE *stream,char *buf)
  4. {
  5.     setvbuf(stream,buf,buf?_IOFBF:_IONBF,BUFSIZ);
  6. }
  7.  
  8.